/* Keeping existing styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'VT323', monospace; letter-spacing: 0.5px; }
  
body {
  background: #000000;
  color: #ffa500;
  line-height: 1.6;
  overflow-x: hidden;
}

body.enlightened {
  background: #ffffff;
}

@keyframes rainAnimation {
  0% { transform: translate(var(--startX), -50px) rotate(var(--rotate)); }
  100% { transform: translate(var(--endX), calc(100vh + 50px)) rotate(var(--rotate)); }
}

@keyframes snowfall {
  0% { transform: translate(var(--startX), -10px) rotate(0deg); }
  100% { transform: translate(var(--endX), calc(100vh + 10px)) rotate(360deg); }
}

.falling-item {
  position: fixed;
  z-index: 1;
  font-size: 24px;
  animation: rainAnimation var(--duration) linear forwards;
  opacity: 0.6;
  color: #ffa500;
  cursor: pointer;
  top: 0;
}

.snowflake {
  position: fixed;
  color: white;
  font-size: 20px;
  z-index: 1;
  animation: snowfall var(--duration) linear forwards;
  opacity: 0.8;
  text-shadow: 0 0 5px rgba(255,255,255,0.3);
}

.profile-header, .tabs, .content {
  position: relative;
  z-index: 2;
  background: #1a1a1a;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9999;
  animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
  from { background-position: 0 0; }
  to { background-position: 0 100%; }
}

.profile-header {
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(255,165,0,0.1);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  object-fit: cover;
  border: 2px solid #ffa500;
}

.profile-info h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
}

.profile-info .username {
  color: #d2691e;
  font-size: 1.4rem;
}

.bio {
  color: #d2691e;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.random-bio {
  color: #d2691e;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  opacity: 1;
  transition: opacity 0.2s ease, color 0.3s ease;
}

.random-bio:hover {
  color: #ffd700;
}

.tabs {
  padding: 1rem 2rem;
  border-bottom: 1px solid #ffa500;
}

.tab {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border: none;
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-family: 'VT323', monospace;
  color: #ffa500;
}

.tab.active {
  border-bottom: 2px solid #ffd700;
  color: #ffd700;
}

.content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(255,165,0,0.1);
  transition: transform 0.2s;
  text-decoration: none;
  color: #ffa500;
  border: 1px solid #d2691e;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255,165,0,0.2);
  border-color: #ffd700;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #ffd700;
}

.card-meta {
  color: #d2691e;
  font-size: 1.1rem;
}

.loading {
  text-align: center;
  padding: 2rem;
  font-size: 1.4rem;
  color: #d2691e;
}

.enlightenment-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffd700;
  padding: 2rem;
  border-radius: 8px;
  z-index: 10000;
  text-align: center;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Update counter styles to show them */
.counters {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(26, 26, 26, 0.9);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ffa500;
  z-index: 1000;
  display: block;
}

.counter {
  color: #ffa500;
  margin: 5px 0;
  font-size: 1.1rem;
  display: block;
}

.counter span {
  color: #ffd700;
  font-weight: bold;
  display: inline;
}

.social-section {
  margin-bottom: 3rem;
  width: 100%;
}

.social-section h2 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #ffa500;
  padding-bottom: 0.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.hall-of-fame-section {
  margin-bottom: 3rem;
  width: 100%;
}

.hall-of-fame-section h2 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #ffa500;
  padding-bottom: 0.5rem;
}

.hall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.christmas-card {
  position: relative;
  overflow: visible !important;
}

.christmas-card::before {
  content: '🎄';
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 24px;
  z-index: 3;
}

.christmas-card::after {
  content: '🎁';
  position: absolute;
  bottom: -15px;
  right: 10px;
  font-size: 24px;
  z-index: 3;
}

.christmas-title {
  position: relative;
  display: inline-block;
}

.christmas-title::before {
  content: '⭐';
  position: absolute;
  top: -15px;
  left: -20px;
  font-size: 16px;
}

.christmas-title::after {
  content: '🎅';
  position: absolute;
  top: -5px;
  right: -25px;
  font-size: 16px;
}

.social-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-stat {
  cursor: pointer;
  color: #ffa500;
  transition: color 0.2s;
}

.social-stat:hover {
  color: #ffd700;
}

.social-stat span {
  font-weight: bold;
  margin-right: 0.3rem;
}

.social-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 8px;
  z-index: 10000;
  min-width: 300px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  border: 1px solid #ffa500;
}

.social-modal h2 {
  color: #ffd700;
  margin-bottom: 1.5rem;
}

.social-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #ffa500;
  cursor: pointer;
  font-size: 1.5rem;
}

.social-modal-close:hover {
  color: #ffd700;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.social-item:hover {
  background-color: rgba(255, 165, 0, 0.1);
}

.social-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.social-item-info {
  flex-grow: 1;
}

.social-item-name {
  color: #ffd700;
  font-size: 1.1rem;
}

.social-item-username {
  color: #d2691e;
  font-size: 0.9rem;
}

body.mustard-theme {
  background: #ffdb58;
  color: #b8860b;
  transition: all 0.5s ease;
}

body.mustard-theme .profile-header,
body.mustard-theme .tabs,
body.mustard-theme .content {
  background: #ffd700;
}

body.mustard-theme .card {
  background: #ffd700;
  border-color: #b8860b;
}

body.mustard-theme .profile-info h1,
body.mustard-theme .card h3 {
  color: #b8860b;
}

body.mustard-theme .card-meta,
body.mustard-theme .profile-info .username {
  color: #daa520;
}

body.mustard-theme .tab {
  color: #b8860b;
}

body.mustard-theme .tab.active {
  border-bottom-color: #b8860b;
  color: #b8860b;
}

body.mustard-theme .falling-item {
  color: #b8860b;
}

body.mustard-theme .random-bio {
  color: #daa520;
}

body.mustard-theme .random-bio:hover {
  color: #b8860b;
}

body.mustard-theme .hall-of-fame-section h2 {
  color: #b8860b;
  border-bottom-color: #b8860b;
}

body.mustard-theme .social-modal {
  background: #ffd700;
  border-color: #b8860b;
}

body.mustard-theme .social-item:hover {
  background-color: rgba(184, 134, 11, 0.1);
}

body.mustard-theme .social-stat,
body.mustard-theme .social-modal-close {
  color: #b8860b;
}

body.mustard-theme .social-stat:hover,
body.mustard-theme .social-modal-close:hover {
  color: #daa520;
}